Apache CXF API

Uses of Interface
org.apache.cxf.Bus

Packages that use Bus
org.apache.cxf Contains the Bus, which is the central touch point of CXF, and its related classes. 
org.apache.cxf.databinding   
org.apache.cxf.feature   
org.apache.cxf.message   
org.apache.cxf.service This package and its sub packages contain classes relating to services and the CXF service model 
org.apache.cxf.transport Transport related classes. 
org.apache.cxf.ws.policy.builder.primitive   
org.apache.cxf.wsdl   
 

Uses of Bus in org.apache.cxf
 

Fields in org.apache.cxf declared as Bus
protected static Bus BusFactory.defaultBus
           
 

Fields in org.apache.cxf with type parameters of type Bus
protected static Map<Thread,Bus> BusFactory.threadBusses
           
 

Methods in org.apache.cxf that return Bus
abstract  Bus BusFactory.createBus()
          Creates a new bus.
static Bus BusFactory.getDefaultBus()
          Returns the default bus, creating it if necessary.
static Bus BusFactory.getDefaultBus(boolean createIfNeeded)
          Returns the default bus
static Bus BusFactory.getThreadDefaultBus()
          Gets the default bus for the thread.
static Bus BusFactory.getThreadDefaultBus(boolean createIfNeeded)
          Gets the default bus for the thread, creating if needed
 

Methods in org.apache.cxf with parameters of type Bus
static void BusFactory.clearDefaultBusForAnyThread(Bus bus)
          Removes a bus from being a thread default bus for any thread.
protected  void BusFactory.initializeBus(Bus bus)
           
static boolean BusFactory.possiblySetDefaultBus(Bus bus)
          Sets the default bus if a default bus is not already set.
static void BusFactory.setDefaultBus(Bus bus)
          Sets the default bus.
static void BusFactory.setThreadDefaultBus(Bus bus)
          Sets the default bus for the thread.
 

Uses of Bus in org.apache.cxf.databinding
 

Methods in org.apache.cxf.databinding that return Bus
protected  Bus AbstractDataBinding.getBus()
           
 

Methods in org.apache.cxf.databinding with parameters of type Bus
 void AbstractDataBinding.setBus(Bus bus)
          This call is used to set the bus.
 

Uses of Bus in org.apache.cxf.feature
 

Methods in org.apache.cxf.feature with parameters of type Bus
 void AbstractFeature.initialize(Bus bus)
           
 void AbstractFeature.initialize(Client client, Bus bus)
           
 void AbstractFeature.initialize(InterceptorProvider interceptorProvider, Bus bus)
           
 void AbstractFeature.initialize(Server server, Bus bus)
           
protected  void AbstractFeature.initializeProvider(InterceptorProvider provider, Bus bus)
           
 

Uses of Bus in org.apache.cxf.message
 

Methods in org.apache.cxf.message that return Bus
 Bus ExchangeImpl.getBus()
           
 Bus Exchange.getBus()
           
 

Uses of Bus in org.apache.cxf.service
 

Methods in org.apache.cxf.service with parameters of type Bus
 void ServiceBuilder.setBus(Bus bus)
           
 

Uses of Bus in org.apache.cxf.transport
 

Fields in org.apache.cxf.transport declared as Bus
protected  Bus TransportURIResolver.bus
           
 

Constructors in org.apache.cxf.transport with parameters of type Bus
TransportURIResolver(Bus b)
           
 

Uses of Bus in org.apache.cxf.ws.policy.builder.primitive
 

Fields in org.apache.cxf.ws.policy.builder.primitive declared as Bus
protected  Bus PrimitiveAssertionBuilder.bus
           
 

Methods in org.apache.cxf.ws.policy.builder.primitive with parameters of type Bus
 void PrimitiveAssertionBuilder.setBus(Bus b)
           
 

Uses of Bus in org.apache.cxf.wsdl
 

Methods in org.apache.cxf.wsdl with parameters of type Bus
static EndpointReferenceType EndpointReferenceUtils.getEndpointReferenceWithId(QName serviceQName, String portName, String id, Bus bus)
          Obtain a multiplexed endpoint reference for the deployed service that contains the provided id
static QName EndpointReferenceUtils.getInterfaceName(EndpointReferenceType ref, Bus bus)
           
static QName EndpointReferenceUtils.getPortQName(EndpointReferenceType ref, Bus bus)
           
static Schema EndpointReferenceUtils.getSchema(ServiceInfo serviceInfo, Bus b)
           
static QName EndpointReferenceUtils.getServiceName(EndpointReferenceType ref, Bus bus)
          Gets the service name of the provided endpoint reference.
static EndpointReferenceType EndpointReferenceUtils.mint(EndpointReferenceType physical, Bus bus)
          Mint logical endpoint reference via the Bus EndpointResolverRegistry.
static EndpointReferenceType EndpointReferenceUtils.mint(QName serviceName, Bus bus)
          Mint logical endpoint reference via the Bus EndpointResolverRegistry.
static EndpointReferenceType EndpointReferenceUtils.renew(EndpointReferenceType logical, EndpointReferenceType physical, Bus bus)
          Renew logical endpoint reference via the Bus EndpointResolverRegistry.
static EndpointReferenceType EndpointReferenceUtils.resolve(EndpointReferenceType logical, Bus bus)
          Resolve logical endpoint reference via the Bus EndpointResolverRegistry.
 


Apache CXF API

Apache CXF